20a397933fe3add904e51f0e94368fb7e076cf71,modules/util/sync-engine/src/com/liferay/sync/engine/filesystem/Watcher.java,Watcher,run,#,93

Before Change


					pathImpl.toString());

				if (((kind == StandardWatchEventKind.ENTRY_CREATE) &&
					 isIgnoredFilePath(childFilePath)) ||
					((kind == StandardWatchEventKind.ENTRY_MODIFY) &&
					 Files.isDirectory(childFilePath))) {

After Change


					pathImpl.toString());

				if (kind == StandardWatchEventKind.ENTRY_CREATE) {
					if (isIgnoredFilePath(childFilePath)) {
						continue;
					}